home *** CD-ROM | disk | FTP | other *** search
/ Mister CD-ROM Magazine 1: 20 Best Action Games / Mister CD-ROM 1.iso / demos / doomlev / morewads / oblivion.bat < prev    next >
Encoding:
DOS Batch File  |  1994-07-28  |  542 b   |  22 lines

  1. @echo off
  2. rem  Here's a quick BAT file for anyone who can't be bothered typing the blurb
  3. rem  when they want to play Oblivion.
  4. echo O.K. loading Doom with Oblivion!
  5. echo ...
  6. echo ..
  7. echo .
  8. if not exist oblivion.wad goto no_wad
  9. if not exist doom.wad goto no_doom
  10. doom -file oblivion.wad
  11. goto end
  12.  
  13. :no_wad
  14. echo I can't find OBLIVION.WAD!  Make sure it's in your Doom directory.
  15. goto end
  16.  
  17. :no_doom
  18. echo There ain't no Doom WAD!  You must have all obilvion.wad and oblivion.bat
  19. echo in your Doom directory to run them.
  20.  
  21. :end
  22.